home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / MEMSZ312.ZIP / SOURCE.ZIP / EXCEPT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-25  |  664 b   |  19 lines

  1. /****************************************************************** EXCEPT.H
  2.  *                                                                         *
  3.  *                            Exception Handler                            *
  4.  *                                                                         *
  5.  ***************************************************************************/
  6.  
  7. #ifndef EXCEPT_H
  8. #define EXCEPT_H
  9.  
  10. extern ULONG APIENTRY ExceptionHandler
  11. (
  12.   PEXCEPTIONREPORTRECORD pExceptionReportRecord,
  13.   PEXCEPTIONREGISTRATIONRECORD pExceptionRegistrationRecord,
  14.   PCONTEXTRECORD pContextRecord,
  15.   PVOID pDispatcherContext
  16. ) ;
  17.  
  18. #endif
  19.